home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume91 / news / barn_201 / part01 / configure.h < prev    next >
C/C++ Source or Header  |  1991-02-07  |  575b  |  28 lines

  1. /*
  2.  *    File Name:        configure.h
  3.  *    Project:        BARN - Bah's Amiga ReadNews.
  4.  *    Purpose:        Configuration variable setting, retrieving.
  5.  *    Author:            Jeff Van Epps
  6.  *    Created:        20 Oct 90
  7.  *    Last Modified:    20 Oct 90
  8.  *    Comments:
  9.  *        For implementation limits, see configure.c.
  10.  *
  11.  *    History:
  12.  *        20 Oct 90/JVE    Created.
  13.  */
  14.  
  15. # ifdef sun
  16.  
  17. extern void        Configure();
  18. extern int        SetVar();
  19. extern char *    GetVar();
  20.  
  21. # else  /* amiga */
  22.  
  23. extern void        Configure( char *config_file );
  24. extern int        SetVar( char *name, char *value );
  25. extern char *    GetVar( char *name );
  26.  
  27. # endif /* sun/amiga */
  28.